Skip to content

Commit fb38e37

Browse files
authored
Merge pull request #2257 from oracle/release_gh
Releasing OCI Provider v.6.21.0
2 parents 2266841 + bf2e268 commit fb38e37

File tree

506 files changed

+24042
-1281
lines changed

Some content is hidden

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

506 files changed

+24042
-1281
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## 6.21.0 (December 19, 2024)
2+
3+
### Added
4+
- Support for ADB-S: Backup Retention Lock
5+
- Support for StackMonitoring: Metric Extensions : Advanced Support and Integration
6+
- Support for Extend OBP cloud service to include new SKUs for Digital Assets editions
7+
- Support for Data Science: Support Private Endpoint Access for Model Deployment
8+
- Support for Add ZeroETL as a resource in GoldenGate Cloud Service
9+
- Support Llama 3.2 unit shape in Generative AI service
10+
- Support for BDS 3.0.29 Release - Feature Enhancements
11+
- Support for BDS - Kerb to IAM Automation
12+
### Bug Fix
13+
14+
- Fix terraform documentation for oci_database_exadb_vm_cluster resource
15+
116
## 6.20.0 (December 11, 2024)
217

318
### Added

coverage/coverage_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
var totalRgx = regexp.MustCompile(`total:\s+\(statements\)\s+([^"]*)%`)
1616

17-
const CodeCoverageThreshold = 57
17+
const CodeCoverageThreshold = 55.9
1818

1919
func TestCoverage(t *testing.T) {
2020
if os.Getenv("CHECK_COVERAGE") != "true" {
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
variable "bds_instance_id" {
2+
}
3+
4+
variable "cluster_admin_password" {
5+
}
6+
7+
variable "confidential_application_id" {
8+
}
9+
10+
variable "display_name" {
11+
default = "identityDomainConfig"
12+
}
13+
14+
variable "identity_domain_id" {
15+
}
16+
17+
variable "activate_iam_user_sync_configuration_trigger" {
18+
default = "false"
19+
}
20+
21+
variable "activate_upst_configuration_trigger" {
22+
default = "false"
23+
}
24+
25+
variable "refresh_confidential_application_trigger" {
26+
default = "false"
27+
}
28+
29+
variable "refresh_upst_token_exchange_keytab_trigger" {
30+
default = "false"
31+
}
32+
33+
variable "is_posix_attributes_addition_required" {
34+
default = "false"
35+
}
36+
37+
variable "confidential_application_id" {
38+
}
39+
40+
variable "vault_id" {
41+
}
42+
43+
resource "oci_bds_bds_instance_identity_configuration" "test_bds_instance_identity_configuration" {
44+
bds_instance_id = var.bds_instance_id
45+
cluster_admin_password = var.cluster_admin_password
46+
confidential_application_id = var.confidential_application_id
47+
display_name = var.display_name
48+
identity_domain_id = var.identity_domain_id
49+
activate_iam_user_sync_configuration_trigger = var.activate_iam_user_sync_configuration_trigger
50+
activate_upst_configuration_trigger = var.activate_upst_configuration_trigger
51+
refresh_confidential_application_trigger = var.refresh_confidential_application_trigger
52+
refresh_upst_token_exchange_keytab_trigger = var.refresh_upst_token_exchange_keytab_trigger
53+
54+
iam_user_sync_configuration_details {
55+
is_posix_attributes_addition_required = var.is_posix_attributes_addition_required
56+
}
57+
58+
upst_configuration_details {
59+
master_encryption_key_id = var.confidential_application_id
60+
vault_id = var.vault_id
61+
}
62+
63+
}

examples/big_data_service/main.tf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,16 @@ resource "oci_bds_bds_instance" "test_bds_instance" {
149149
kms_key_id = var.kms_key_id
150150
cluster_profile = var.cluster_profile
151151
bootstrap_script_url = "https://objectstorage.us-ashburn-1.oraclecloud.com/p/Lk5JT9tnUIOG4yLm6S21QVR7m3Rm2uj1RAS2Olx5v14onLU2Y-b0lIc_N0RuUIge/n/idpbwtq1b3ta/b/bucket-20230214-1316/o/execute_bootstrap_script.sh"
152+
is_force_stop_jobs = "true"
153+
state = "ACTIVE"
154+
155+
start_cluster_shape_configs{
156+
node_type_shape_configs {
157+
node_type = "WORKER"
158+
shape = "VM.Standard.Generic"
159+
160+
}
161+
}
152162

153163
master_node {
154164
#Required

examples/database/adb/autonomous_database.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,20 @@ resource "oci_database_autonomous_database" "test_autonomous_database_apex" {
128128
is_free_tier = "false"
129129
}
130130

131+
resource "oci_database_autonomous_database" "test_autonomous_database_bck_ret_lock" {
132+
admin_password = random_string.autonomous_database_admin_password.result
133+
compartment_id = var.compartment_ocid
134+
compute_count = "2.0"
135+
compute_model = "ECPU"
136+
data_storage_size_in_tbs = "1"
137+
db_name = "adbBckRetLock"
138+
db_version = "19c"
139+
license_model = "LICENSE_INCLUDED"
140+
is_free_tier = "false"
141+
is_backup_retention_locked = "false"
142+
}
143+
144+
131145
resource "oci_database_autonomous_database" "test_autonomous_database_bck_ret_days" {
132146
admin_password = random_string.autonomous_database_admin_password.result
133147
compartment_id = var.compartment_ocid
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# $Header$
2+
#
3+
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
4+
#
5+
# NAME
6+
# data.tf
7+
#
8+
# USAGE
9+
# Use the following path for the Example & Backward Compatibility tests: database/db_systems/db_vm/db_vm_amd
10+
# NOTES
11+
# Terraform Integration Test: TestResourceDatabaseDBSystemAmdVM
12+
#
13+
# FILE(S)
14+
# database_db_system_resource_amd_vm_test.go
15+
#
16+
# MODIFIED MM/DD/YY
17+
# escabrer 12/12/2024 - Created
18+
19+
20+
21+
data "oci_identity_availability_domains" "test_availability_domains" {
22+
compartment_id = var.tenancy_ocid
23+
}

0 commit comments

Comments
 (0)