mirror of
				https://github.com/optim-enterprises-bv/terraform-talos.git
				synced 2025-10-31 02:08:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			31 lines
		
	
	
		
			509 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			509 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| 
 | |
| variable "upcloud_username" {
 | |
|   type = string
 | |
|   default = ""
 | |
| }
 | |
| 
 | |
| variable "upcloud_password" {
 | |
|   type = string
 | |
|   default = ""
 | |
|   sensitive = true
 | |
| }
 | |
| 
 | |
| variable "upcloud_zone" {
 | |
|   type      = string
 | |
|   default   = "nl-ams1"
 | |
| }
 | |
| 
 | |
| variable "upcloud_zones" {
 | |
|   type      = list(string)
 | |
|   default   = ["de-fra1", "uk-lon1"]
 | |
| }
 | |
| 
 | |
| variable "talos_version" {
 | |
|   type    = string
 | |
|   default = "v0.13.0"
 | |
| }
 | |
| 
 | |
| locals {
 | |
|   image = "https://github.com/talos-systems/talos/releases/download/${var.talos_version}/upcloud-amd64.raw.xz"
 | |
| }
 | 
