forked from Fediversity/Fediversity
23 lines
281 B
HCL
23 lines
281 B
HCL
variable "system" {
|
|
type = string
|
|
default = "x86_64-linux"
|
|
}
|
|
|
|
variable "username" {
|
|
type = string
|
|
default = "root"
|
|
}
|
|
|
|
variable "host" {
|
|
type = string
|
|
}
|
|
|
|
variable "config_nix" {
|
|
type = string
|
|
default = "{}"
|
|
}
|
|
|
|
variable "config_tf" {
|
|
type = map(any)
|
|
default = {}
|
|
}
|