Skip to content

Commit 30d6d23

Browse files
authored
Merge pull request #2246 from oracle/release_gh
Releasing version 6.19.0
2 parents aacfd85 + 9328f31 commit 30d6d23

File tree

193 files changed

+1521
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

193 files changed

+1521
-190
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions

examples/database/db_systems/db_vm/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ resource "oci_database_db_system" "db_system_bkup" {
345345
db_home {
346346
db_version = "12.1.0.2"
347347
database_software_image_id = var.test_database_software_image_ocid
348+
is_unified_auditing_enabled = false
348349
database {
349350
admin_password = "BEstrO0ng_#11"
350351
backup_tde_password = "BEstrO0ng_#11"

examples/psql/main.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ resource "oci_psql_db_system" "test_db_system" {
5454
db_version = "14"
5555
display_name = "tf-test-dbSystem"
5656
network_details {
57+
is_reader_endpoint_enabled = true
5758
subnet_id = oci_core_subnet.test_subnet.id
5859
}
5960
shape = "PostgreSQL.VM.Standard.E4.Flex.2.32GB"
@@ -73,12 +74,14 @@ resource "oci_psql_db_system" "test_db_system" {
7374
system_type = "OCI_OPTIMIZED_STORAGE"
7475
}
7576

77+
# Creating flex dbsystem
7678
resource "oci_psql_db_system" "test_flexdb_system" {
7779
#Required
7880
db_version = "14"
7981
display_name = "tf-flex-test-dbSystem"
8082
network_details {
8183
subnet_id = oci_core_subnet.test_subnet.id
84+
is_reader_endpoint_enabled = true
8285
}
8386
shape = "PostgreSQL.VM.Standard.E4.Flex"
8487
storage_details {
@@ -144,3 +147,9 @@ data "oci_psql_configurations" "test_configurations" {
144147
compartment_id = var.compartment_ocid
145148

146149
}
150+
151+
# Details about specific dbsystem connection
152+
data "oci_psql_db_system_connection_detail" "test_db_system_connection_detail" {
153+
#Required
154+
db_system_id = oci_psql_db_system.test_db_system.id
155+
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

examples/zips/analytics.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)