From 2704642b3db089fbb5f47b4d43041d1b28919b85 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Sun, 29 Jun 2025 22:00:30 -0400 Subject: [PATCH] fix: os details for source image of oracle --- deploy/oracle/main.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/oracle/main.tf b/deploy/oracle/main.tf index 664601a..a5d63b3 100644 --- a/deploy/oracle/main.tf +++ b/deploy/oracle/main.tf @@ -49,13 +49,13 @@ resource "oci_core_image" "my_custom_image" { object_name = var.object_storage_object_name source_image_type = "QCOW2" # e.g., "QCOW2", "VMDK" - } - # These properties help OCI understand how to launch instances from this image - # Adjust based on your custom image's OS and boot mode - launch_mode = "PARAVIRTUALIZED" # Or "NATIVE", "EMULATED", "CUSTOM" - operating_system = "NixOS" # e.g., "CentOS", "Debian", "Windows" - operating_system_version = "25.05" # e.g., "7", "11", "2019" + # These properties help OCI understand how to launch instances from this image + # Adjust based on your custom image's OS and boot mode + launch_mode = "PARAVIRTUALIZED" # Or "NATIVE", "EMULATED", "CUSTOM" + operating_system = "NixOS" # e.g., "CentOS", "Debian", "Windows" + operating_system_version = "25.05" # e.g., "7", "11", "2019" + } # Optional: for specific launch options if your image requires them # launch_options {