mirror of
				https://github.com/optim-enterprises-bv/terraform-talos.git
				synced 2025-10-31 02:08:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			372 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			372 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
| 
 | |
| # openssl genrsa -out ~/.oci/oci_api_key.pem 2048
 | |
| # chmod go-rwx ~/.oci/oci_api_key.pem
 | |
| # openssl rsa -pubout -in ~/.oci/oci_api_key.pem -out ~/.oci/oci_api_key_public.pem
 | |
| 
 | |
| provider "oci" {
 | |
|   tenancy_ocid     = var.tenancy_ocid
 | |
|   user_ocid        = var.user_ocid
 | |
|   fingerprint      = var.fingerprint
 | |
|   private_key_path = "~/.oci/oci_api_key.pem"
 | |
| 
 | |
|   region = var.region
 | |
| }
 | 
