mirror of
				https://github.com/optim-enterprises-bv/terraform-talos.git
				synced 2025-11-04 04:07:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			793 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			793 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
 | 
						|
variable "compartment_ocid" {
 | 
						|
  description = "The OCID of the compartment"
 | 
						|
  type        = string
 | 
						|
  default     = "ocid1.compartment.oc1.."
 | 
						|
}
 | 
						|
variable "tenancy_ocid" {
 | 
						|
  description = "The OCID of the tenancy"
 | 
						|
  type        = string
 | 
						|
  default     = "ocid1.tenancy.oc1.."
 | 
						|
}
 | 
						|
variable "user_ocid" {}
 | 
						|
variable "fingerprint" {}
 | 
						|
variable "key_file" {
 | 
						|
  default = "~/.oci/oci_production_terraform.pem"
 | 
						|
}
 | 
						|
 | 
						|
data "terraform_remote_state" "prepare" {
 | 
						|
  backend = "local"
 | 
						|
  config = {
 | 
						|
    path = "${path.module}/../prepare/terraform.tfstate"
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
locals {
 | 
						|
  project = data.terraform_remote_state.prepare.outputs.project
 | 
						|
  region  = data.terraform_remote_state.prepare.outputs.region
 | 
						|
  tags    = data.terraform_remote_state.prepare.outputs.tags
 | 
						|
}
 | 
						|
 | 
						|
variable "repos" {
 | 
						|
  default = [
 | 
						|
    "kubelet",
 | 
						|
  ]
 | 
						|
}
 |