Skip to content

Commit ac3bb9e

Browse files
authored
Merge pull request #2003 from oracle/release_gh
Releasing version 5.22.0
2 parents 7fdd6ad + 0519723 commit ac3bb9e

File tree

459 files changed

+27066
-3153
lines changed

Some content is hidden

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

459 files changed

+27066
-3153
lines changed

.gitmodules

Whitespace-only changes.

CHANGELOG.md

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1-
## 5.21.0 (November 14, 2023)
2-
3-
### Added
4-
- Support for BM Capacity API for customers with dedicated capacity
5-
test improvements for postgresql service
6-
- Support for BDS Certificate Management - API ONLY Changes
7-
- Support for IdentityDomains/IDCS API - Phase 3
8-
### Bug Fix
9-
- core ipsec tunnels
10-
- Analytics - fix for AOAC-60112 change on network_security_group_ids attribute for oci_analytics_analytics_instance resource forces replacement
1+
## 5.22.0 (December 06, 2023)
2+
3+
### Added
4+
- Support for VM Cluster Vertical scaling | ADB-D + ADB-C@C
5+
- Support for Enable Multiple Clusters in an SDDC
6+
support for Database Tools service connections without runtime support
7+
- Support for Backup/Recovery Enhancements | ADB-D
8+
- Support for Manage Certificates of Target Servers
9+
- Support for Support OL8 and upgrade to OL8 | Base DB
10+
- Support for ARM Shapes in Data Science
11+
- terraform test for reduce false positive
12+
- Support for VM Cluster Vertical scaling | ADB-D + ADB-C@C
13+
- Support for ExaDB-C@C (EXACC) Serial Console Access to VM - History Files
14+
- Support for ADB-S: Ability to Switch DB Tools On/Off
15+
- Support for Update documentation for SQL firewall management resources
16+
- Support for Increase Creation Time for VM Cluster in Terraform
17+
- Support adding managed instances to a group
18+
- git module configuration to resolve TC job failure issue
1119

1220
## 5.21.0 (November 14, 2023)
1321

examples/adm/knowledge_base/main.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ resource "oci_adm_vulnerability_audit" "example_vulnerability_audit" {
4949
#Optional
5050
application_dependency_node_ids = []
5151
}
52+
#Optional
53+
usage_data {
54+
namespace = "id758to84zun"
55+
bucket = "usaga-data-TERSI-2463"
56+
object = "usage-data-with-vulnerable-class-method.json.gz"
57+
source_type = "objectStorageTuple"
58+
}
59+
5260
source {
5361
type = "OCI_RESOURCE"
5462
oci_resource_id = "ocid1.example.ocid"

examples/database/adb/autonomous_database.tf

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,26 @@ resource "oci_database_autonomous_database" "test_autonomous_database_bck_ret_da
108108
is_free_tier = "false"
109109
}
110110

111+
resource "oci_database_autonomous_database" "test_autonomous_database_db_tools" {
112+
admin_password = random_string.autonomous_database_admin_password.result
113+
compartment_id = var.compartment_ocid
114+
cpu_core_count = "1"
115+
data_storage_size_in_tbs = "1"
116+
backup_retention_period_in_days = "15"
117+
db_name = "adbdbtoolsL"
118+
db_version = "19c"
119+
db_workload = "AJD"
120+
license_model = "LICENSE_INCLUDED"
121+
is_free_tier = "false"
122+
db_tools_details {
123+
#Required
124+
name = "ORDS"
125+
126+
#Optional
127+
is_enabled = true
128+
}
129+
}
130+
111131
resource "oci_database_autonomous_database" "test_autonomous_database_actions" {
112132
admin_password = random_string.autonomous_database_admin_password.result
113133
compartment_id = var.compartment_ocid

examples/database/atp-d/main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ resource "oci_database_autonomous_database" "test_autonomous_database" {
7575
#Required
7676
admin_password = random_string.autonomous_database_admin_password.result
7777
compartment_id = var.compartment_ocid
78-
compute_count = 8
78+
compute_count = 16
7979
data_storage_size_in_tbs = "1"
8080
db_name = "atpdb1"
8181

@@ -94,7 +94,7 @@ resource "oci_database_autonomous_database" "test_autonomous_database_character_
9494
#Required
9595
admin_password = random_string.autonomous_database_admin_password.result
9696
compartment_id = var.compartment_ocid
97-
compute_count = "1"
97+
compute_count = "2"
9898
data_storage_size_in_tbs = "1"
9999
db_name = "atpdb2"
100100

0 commit comments

Comments
 (0)