terraform-provider-oci icon indicating copy to clipboard operation
terraform-provider-oci copied to clipboard

Documentation issue for oci_core_instance / is-consistent-volume-naming-enabled

Open guidin360 opened this issue 2 years ago • 0 comments

Hi!

As per the provider documentation https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/core_instance#is_consistent_volume_naming_enabled , the parameter is-consistent-volume-naming-enabled defaults to false, however if i don't set this parameter it's actually set to true, and if i set it to false i get an error:

Overriding ConsistentVolumeNamingEnabled in LaunchOptions is not supported

Without setting this parameter the vm is created with these settings:

"launch-options": {
        "boot-volume-type": "PARAVIRTUALIZED",
        "firmware": "UEFI_64",
        **"is-consistent-volume-naming-enabled": true,**
        "is-pv-encryption-in-transit-enabled": true,
        "network-type": "PARAVIRTUALIZED",
        "remote-data-volume-type": "PARAVIRTUALIZED"
      },

Is this expected?

Thanks!

guidin360 avatar Apr 05 '22 07:04 guidin360