Add NixOS ZFS EC2 AMI builder

This commit is contained in:
Timothy J. Aveni
2026-06-20 11:28:38 -07:00
commit b2e4b7fcaa
9 changed files with 681 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
output "ami_id" {
value = aws_ami.matched.id
}
output "architecture" {
value = var.architecture
}
output "input_hash" {
value = var.input_hash
}
output "builder_git_rev" {
value = var.builder_git_rev
}
output "flake_lock_rev" {
value = var.flake_lock_rev
}
output "root_snapshot_id" {
value = var.root_snapshot_id
}
output "nix_snapshot_id" {
value = var.nix_snapshot_id
}
output "nixos_system_closure" {
value = var.nixos_system_closure
}