From ecf6bdda458c49479ff343c19c7d480669b72f44 Mon Sep 17 00:00:00 2001 From: Noah Masur <7386960+nmasur@users.noreply.github.com> Date: Thu, 3 Jul 2025 18:38:13 -0600 Subject: [PATCH] fix: must specify network type if launch options --- deploy/oracle/main.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deploy/oracle/main.tf b/deploy/oracle/main.tf index 8e02712..2ef308d 100644 --- a/deploy/oracle/main.tf +++ b/deploy/oracle/main.tf @@ -91,7 +91,8 @@ resource "oci_core_instance" "my_compute_instance" { } launch_options { - is_consistent_volume_naming_enabled = true # Sets boot device path to /dev/oracleoci/oraclevda + is_consistent_volume_naming_enabled = true # Sets boot device path to /dev/oracleoci/oraclevda + network_type = "PARAVIRTUALIZED" # I think this is the default? } create_vnic_details {