Skip to content

Commit 43a9526

Browse files
Releasing version 4.76.0
Releasing version 4.76.0
2 parents 77a2f3a + 155f963 commit 43a9526

File tree

454 files changed

+39365
-341
lines changed

Some content is hidden

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

454 files changed

+39365
-341
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 4.76.0 (May 19, 2022)
2+
3+
### Added
4+
- Support for AMD E4 shape for VMDB
5+
- Helm chart Support in OCI DevOps
6+
- support for ADBD CharacterSet
7+
- support for Service Mesh
8+
- Terraform Changes for ADM Support in DLC Build Service
9+
- New ADBS fields to distinguish between cross-region and local dg
10+
- Support for Bitbucket as Source Code repository
11+
- Data plane events ExaCC V1
12+
### Bug Fix
13+
- Improve description of isHighlyAvailable option for updateDbSystem operation
14+
115
## 4.75.0 (May 11, 2022)
216

317
### Added

examples/database/adb/variables.tf

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,12 @@ variable "autonomous_database_is_dedicated" {
5151

5252
variable "autonomous_database_autonomous_maintenance_schedule_type" {
5353
default = "EARLY"
54+
}
55+
56+
variable "autonomous_database_character_set" {
57+
default = "AL32UTF8"
58+
}
59+
60+
variable "autonomous_database_ncharacter_set" {
61+
default = "AL16UTF16"
5462
}

examples/database/atp-d/main.tf

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,23 @@ resource "oci_database_autonomous_database" "test_autonomous_database" {
8080
rotate_key_trigger = "true"
8181
}
8282

83+
resource "oci_database_autonomous_database" "test_autonomous_database_character_set_support" {
84+
#Required
85+
admin_password = random_string.autonomous_database_admin_password.result
86+
compartment_id = var.compartment_ocid
87+
cpu_core_count = "1"
88+
data_storage_size_in_tbs = "1"
89+
db_name = "atpdb2"
90+
91+
#Optional
92+
autonomous_container_database_id = oci_database_autonomous_container_database.test_autonomous_container_database.id
93+
db_workload = "OLTP"
94+
display_name = "example_autonomous_database-008"
95+
is_dedicated = "true"
96+
character_set = "AL32UTF8"
97+
ncharacter_set = "AL16UTF16"
98+
}
99+
83100
data "oci_database_autonomous_container_databases" "test_autonomous_container_databases" {
84101
#Required
85102
compartment_id = var.compartment_ocid

0 commit comments

Comments
 (0)