This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
tf-modules/invariants/outputs.tf

35 lines
602 B
Terraform
Raw Normal View History

2023-04-05 17:15:03 +00:00
output "admin_authorized_keys" {
value = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
]
}
output "disk_pool" {
value = "disk"
}
output "disk_base" {
value = "debian-bookworm.qcow2"
}
output "disk_base_pool" {
value = "iso"
}
output "cloudinit_pool" {
value = "init"
}
output "bridge_name" {
value = "dmzbr"
}
output "ca_host" {
value = "hermes.dmz"
}
2023-04-23 22:07:59 +00:00
output "ca_script" {
value = "/root/ssh_ca/ssh_ca.sh"
}