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

Oracle Base Database Service "Database unique name suffix"

Open ITRacer75 opened this issue 1 month ago • 0 comments

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or "me too" comments, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

Currently when you create an Oracle Base Database Service using the Oracle cloud console you can specify a Database unique name suffix as an optional paramter which is essential for some builds especially if you have a mix of Base Database services and EXADatas. When trying to do the builds via terraform there is no "Database unique name suffix" paramater availble in terrafrom so this value currently cant be set using terraform and thus we can`t do our builds via terraform and thus have to manually build all our Databases that require this unique name suffix.

New or Affected Resource(s)

The Affected resource is as follows:

https://registry.terraform.io/providers/oracle/oci/latest/docs/resources/database_db_system

oci_database_db_system

It does not have the "Database unique name suffix" as an optional paramter under the database options.

Potential Terraform Configuration

    #Optional
    database_software_image_id = oci_database_database_software_image.test_database_software_image.id
    db_version = var.db_system_db_home_db_version
    defined_tags = var.db_system_db_home_defined_tags
    display_name = var.db_system_db_home_display_name
    freeform_tags = var.db_system_db_home_freeform_tags
    **db_unique_suffix = var.db_system_db_home_unique_suffix**

References

ITRacer75 avatar May 21 '24 08:05 ITRacer75