try using consistent volume naming for formatting disk

This commit is contained in:
Noah Masur
2025-07-03 18:34:09 -06:00
parent c5ad3c66ea
commit 5e2fca427d
2 changed files with 5 additions and 9 deletions

View File

@ -90,6 +90,10 @@ resource "oci_core_instance" "my_compute_instance" {
boot_volume_vpus_per_gb = 20 # Highest free tier option
}
launch_options {
is_consistent_volume_naming_enabled = true # Sets boot device path to /dev/oracleoci/oraclevda
}
create_vnic_details {
subnet_id = oci_core_subnet.my_public_subnet.id # Use the created subnet's ID
display_name = "primary_vnic"