split invariants into seperate module
This commit is contained in:
parent
9b70c55033
commit
7aac5730ad
3 changed files with 64 additions and 33 deletions
30
invariants/outputs.tf
Normal file
30
invariants/outputs.tf
Normal 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"
|
||||
}
|
Reference in a new issue