32 lines
683 B
HCL
32 lines
683 B
HCL
variable "name" {
|
|
default = "hermes"
|
|
}
|
|
|
|
variable "libvirt_endpoint" {
|
|
type = string
|
|
default = "qemu+ssh://root@atlas.lan/system"
|
|
}
|
|
|
|
variable "admin_authorized_keys" {
|
|
type = list(string)
|
|
default = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
|
|
]
|
|
}
|
|
|
|
variable "internal_ip" {
|
|
default = "192.168.30.7"
|
|
}
|
|
|
|
variable "ansible_inventory" {
|
|
default = "ansible/inventory"
|
|
}
|
|
|
|
variable "ansible_playbook" {
|
|
default = "ansible/hermes.yml"
|
|
}
|
|
|
|
variable "ansible_cfg" {
|
|
default = "ansible/ansible.cfg"
|
|
}
|