Skip to content

Commit

Permalink
v1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcGueury committed Nov 21, 2023
1 parent fc254b1 commit f3c4528
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions basis/src/terraform/datasource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,4 +114,5 @@ locals {
resource "random_string" "id" {
length = 4
special = false
upper = false
}
4 changes: 2 additions & 2 deletions option/terraform/atp.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ resource "oci_database_autonomous_database" "starter_atp" {
compartment_id = local.lz_database_cmp_ocid
cpu_core_count = "1"
data_storage_size_in_tbs = "1"
# Random name to have several OCI Starter ATP named (starteratp-xx) on the same Tenancy (Ex: livelabs)
db_name = "${var.prefix}atp-${random_string.id.result}"
# Random name to have several OCI Starter ATP named (starteratpxxxx) on the same Tenancy (Ex: livelabs)
db_name = "${var.prefix}atp${random_string.id.result}"

#Optional
db_workload = "OLTP"
Expand Down

0 comments on commit f3c4528

Please sign in to comment.