ci: fixing libvirt connection
Some checks failed
continuous-integration/drone/pr Build is failing

This commit is contained in:
2022-05-27 12:42:39 +02:00
parent bf43e01ab2
commit 4eef24bec5
4 changed files with 46 additions and 4 deletions

View File

@@ -32,3 +32,33 @@ variable "lawndale_dns_key_algorithm" {
description = "DNSSEC key to use sigining the NSUPDATE queries for Lawndale"
default = "hmac-sha256"
}
variable "lawndale_libvirt_uri" {
type = string
description = "Libvirt URI to use accessing Lawndale hypervisor"
default = null
nullable = true
}
variable "lawndale_libvirt_uri_transport" {
type = string
description = "Transport protocol (could be ssh or tls) to dial Lawndale hypervisor"
}
variable "lawndale_libvirt_uri_userhostport" {
type = string
description = "Libvirt URI username, hostname or ip address, and port to reach lawndale hypervisor, in the format of `[username@]<hostname>[:port]`"
default = "lawndale-hyper"
}
variable "lawndale_libvirt_uri_path" {
type = string
description = "Libvirt URI path sent to the libvirt daemon"
default = "/system"
}
variable "lawndale_libvirt_uri_extra" {
type = map(any)
description = "Libvirt URI extra parameters [https://libvirt.org/uri.html#transport-configuration](See Libvirt transport configuration)"
default = {}
}