split invariants into seperate module

This commit is contained in:
Pim Kunis 2023-04-05 19:15:03 +02:00
parent 9b70c55033
commit 7aac5730ad
3 changed files with 64 additions and 33 deletions

30
invariants/outputs.tf Normal file
View file

@ -0,0 +1,30 @@
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"
}