mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-05 23:10:13 +00:00
switch back to /dev/sda for volume path
This commit is contained in:
@ -90,10 +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
|
||||
network_type = "PARAVIRTUALIZED" # I think this is the default?
|
||||
}
|
||||
# launch_options {
|
||||
# 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 {
|
||||
subnet_id = oci_core_subnet.my_public_subnet.id # Use the created subnet's ID
|
||||
|
@ -134,7 +134,8 @@ rec {
|
||||
disk = {
|
||||
main = {
|
||||
type = "disk";
|
||||
device = "/dev/oracleoci/oraclevda"; # Consistent volume naming
|
||||
# device = "/dev/oracleoci/oraclevda"; # Consistent volume naming
|
||||
device = "/dev/sda"; # Consistent volume naming
|
||||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
|
Reference in New Issue
Block a user