---
title: "CentOS Cloud Images"
markdown: basic
is_dynamic: true
has_toc: true
layout: page-download-mirror
permalink: /:path/:basename/index.html
---
Amazon AMI information here
===========================
Basic info on Amazon images here
<input type="text" id="myInput" onkeyup="myFunction()" placeholder="Search for image...">
<table id="myTable">
<tr>
<th>Version</th>
<th>Region</th>
<th>Architecture</th>
<th>AMI ID</th>
<th>Deploy link</th>
</tr>
{% for row in site.data.aws-images %}
<tr>
<td>{{ row["Version"] }}</td>
<td>{{ row["Region"] }}</td>
<td>{{ row["Architecture"] }}</td>
<td>{{ row["AMI ID"] }}</td>
<td><a href="{{ row["Deploy link"] }}"><i class="fab fa-aws"></i> Deploy link</a></td>
</tr>
{% endfor %}
</table>