15 lines
203 B
HCL
15 lines
203 B
HCL
variable "hcloud_token" {
|
|
sensitive = true
|
|
type = string
|
|
}
|
|
|
|
variable "public_key_file" {
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
variable "boxes" {
|
|
type = map(object({
|
|
private_ip = string
|
|
}))
|
|
} |