Files
nixos-zfs-ec2-ami/outputs.tf
T
2026-06-20 11:28:38 -07:00

32 lines
463 B
Terraform

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
}