mirror of
				https://github.com/KevinMidboe/kazan-terraform.git
				synced 2025-10-29 17:50:16 +00:00 
			
		
		
		
	- Defines controller & worker resources - terraform.tfvars defines distinct nodes as a dictonary - Output provides final vmid, name & template used
		
			
				
	
	
		
			9 lines
		
	
	
		
			232 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			232 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| variable "k8s_controllers" {
 | |
|   description = "k8s controller node variables as a dictionary"
 | |
|   type        = map(any)
 | |
| }
 | |
| 
 | |
| variable "k8s_workers" {
 | |
|   description = "k8s worker node variables as a dictionary"
 | |
|   type        = map(any)
 | |
| } |