36 lines
503 B
Terraform
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
|
|
}
|