Files
terraform-talos/system_os/scaleway/variables.pkr.hcl
Serge Logvinov 9bc3ce7f18 Split configs
2021-08-21 19:58:10 +03:00

32 lines
585 B
HCL

variable "scaleway_project_id" {
type = string
default = env("SCW_DEFAULT_PROJECT_ID")
}
variable "scaleway_access_key" {
type = string
default = env("SCW_ACCESS_KEY")
sensitive = true
}
variable "scaleway_secret_key" {
type = string
default = env("SCW_SECRET_KEY")
sensitive = true
}
variable "scaleway_zone" {
type = string
default = "fr-par-2"
}
variable "talos_version" {
type = string
default = "v0.12.0"
}
locals {
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/metal-amd64.tar.gz"
}