Files
terraform-talos/system_os/digitalocean/variables.pkr.hcl
Serge Logvinov a8a1dc583d Split blocks
2021-08-20 23:44:13 +03:00

17 lines
247 B
HCL

variable "do_api_token" {
type = string
default = "${env("DO_API_TOKEN")}"
sensitive = true
}
variable "do_region" {
type = string
default = "lon1"
}
variable "talos_version" {
type = string
default = "v0.11.0"
}