Files
terraform-talos/system_os/scaleway/variables.pkr.hcl
Serge Logvinov fb01d3128c update image
2023-04-04 19:45:05 +03:00

32 lines
587 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 = "v1.3.6"
}
locals {
image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/scaleway-amd64.raw.xz"
}