mirror of
				https://github.com/nmasur/dotfiles
				synced 2025-11-04 12:53:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			531 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			531 B
		
	
	
	
		
			HCL
		
	
	
	
	
	
output "host_ip" {
 | 
						|
  description = "The public IP address of the launched instance."
 | 
						|
  value       = oci_core_instance.my_compute_instance.public_ip
 | 
						|
}
 | 
						|
 | 
						|
output "instance_id" {
 | 
						|
  description = "The OCID of the launched instance."
 | 
						|
  value       = oci_core_instance.my_compute_instance.id
 | 
						|
}
 | 
						|
 | 
						|
output "vpc_ocid" {
 | 
						|
  description = "The OCID of the created VCN."
 | 
						|
  value       = oci_core_vcn.my_vpc.id
 | 
						|
}
 | 
						|
 | 
						|
output "subnet_ocid" {
 | 
						|
  description = "The OCID of the created public subnet."
 | 
						|
  value       = oci_core_subnet.my_public_subnet.id
 | 
						|
}
 |