mirror of
				https://github.com/optim-enterprises-bv/terraform-talos.git
				synced 2025-11-04 04:07:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			587 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			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"
 | 
						|
}
 |