mirror of
				https://github.com/optim-enterprises-bv/terraform-talos.git
				synced 2025-10-30 17:58:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			507 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			507 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| 
 | |
| variable "tenancy_ocid" {}
 | |
| variable "user_ocid" {}
 | |
| variable "fingerprint" {}
 | |
| variable "region" {
 | |
|   description = "the OCI region where resources will be created"
 | |
|   type        = string
 | |
|   default     = null
 | |
| }
 | |
| 
 | |
| variable "project" {
 | |
|   type    = string
 | |
|   default = "main"
 | |
| }
 | |
| 
 | |
| variable "tags" {
 | |
|   description = "Defined Tags of resources"
 | |
|   type        = map(string)
 | |
|   default = {
 | |
|     "Environment" = "Resource environment"
 | |
|     "Role"        = "Kubernetes node role"
 | |
|     "Type"        = "Type of resource"
 | |
|   }
 | |
| }
 | 
