1
0
Fork 0
mirror of https://github.com/poseidon/typhoon synced 2024-05-03 22:26:20 +02:00

Switch Fedora CoreOS to new ARM64 AMIs (#1038)

* Fedora CoreOS now publishes ARM64 AMIs
This commit is contained in:
Anthony Rabbito 2021-09-12 14:49:13 -04:00 committed by GitHub
parent dae79d5916
commit c6923b9ef3
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,15 +18,11 @@ data "aws_ami" "fedora-coreos" {
values = ["Fedora CoreOS ${var.os_stream} *"]
}
}
# Experimental Fedora CoreOS arm64 / aarch64 AMIs from Poseidon
# WARNING: These AMIs will be removed when Fedora CoreOS publishes arm64 AMIs
# and may be removed for any reason before then as well. Do not use.
data "aws_ami" "fedora-coreos-arm" {
count = var.arch == "arm64" ? 1 : 0
most_recent = true
owners = ["099663496933"]
owners = ["125523088429"]
filter {
name = "architecture"
@ -39,8 +35,7 @@ data "aws_ami" "fedora-coreos-arm" {
}
filter {
name = "name"
values = ["fedora-coreos-*"]
name = "description"
values = ["Fedora CoreOS ${var.os_stream} *"]
}
}