Files
terraform-talos/system_os/digitalocean/variables.pkr.hcl
Serge Logvinov 5e28e009f0 init do setup
2022-10-11 17:46:12 +03:00

17 lines
246 B
HCL

variable "do_api_token" {
type = string
default = "${env("DO_API_TOKEN")}"
sensitive = true
}
variable "do_region" {
type = string
default = "ams3"
}
variable "talos_version" {
type = string
default = "v1.2.4"
}