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

36 lines
503 B
Terraform

output "builder_instance_id" {
value = aws_instance.builder.id
}
output "architecture" {
value = local.aws_architecture
}
output "system" {
value = var.system
}
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 "nix_device_name" {
value = var.nix_device_name
}
output "nix_volume_id" {
value = aws_ebs_volume.nix.id
}
output "nix_pool" {
value = var.nix_pool
}