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.
hermes/variables.tf

33 lines
683 B
Terraform
Raw Normal View History

2023-03-11 16:10:21 +00:00
variable "name" {
default = "hermes"
2023-03-11 16:10:21 +00:00
}
variable "libvirt_endpoint" {
2023-03-17 08:27:52 +00:00
type = string
default = "qemu+ssh://root@atlas.lan/system"
2023-03-11 16:10:21 +00:00
}
variable "admin_authorized_keys" {
type = list(string)
default = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOodpLr+FDRyKyHjucHizNLVFHZ5AQmE9GmxMnOsSoaw pimkunis@thinkpadpim",
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINUZp4BCxf7uLa1QWonx/Crf8tYZ5MKIZ+EuaBa82LrV user@user-laptop"
]
2023-03-11 16:10:21 +00:00
}
2023-03-11 18:05:42 +00:00
variable "internal_ip" {
default = "192.168.30.7"
}
2023-03-17 08:27:52 +00:00
variable "ansible_inventory" {
default = "ansible/inventory"
}
variable "ansible_playbook" {
default = "ansible/hermes.yml"
}
2023-03-17 16:26:03 +00:00
variable "ansible_cfg" {
default = "ansible/ansible.cfg"
}