Skip to content

Commit

Permalink
v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGueury committed Jan 26, 2024
1 parent fe6242c commit 61a566b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion option/terraform/dbsystem_pluggable.j2.tf
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ data "oci_database_databases" "starter_dbs" {
resource "oci_database_pluggable_database" "starter_pluggable_database" {
#Required
container_database_id = data.oci_database_databases.starter_dbs.databases.0.id
pdb_name = substr("${var.prefix}pdb", 0, 29)
pdb_name = replace(substr("${var.prefix}pdb", 0, 29), "-", "_")

pdb_admin_password = var.db_password
should_pdb_admin_account_be_locked = false
Expand Down

0 comments on commit 61a566b

Please sign in to comment.