Skip to content

Commit 4e94eed

Browse files
Releasing version dev-version
Releasing version dev-version
2 parents 7cf9d40 + ab60623 commit 4e94eed

File tree

765 files changed

+26451
-5666
lines changed

Some content is hidden

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

765 files changed

+26451
-5666
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 7.24.0 (October 29, 2025)
2+
3+
### Added
4+
- Support for HeatWave MySQL Service: Configurable Version Upgrade Policies
5+
- Support for ADBS: Autonomous Name Change
6+
- Support for Oracle Cloud AI Services Language - Enhancement-Rel4.2
7+
- Support for LBaaS Support for online conversion of IPv4 LB to dual stack IPv4 and IPv6
8+
- Support for ADB-S: Vanity URL support using API Gateway
9+
- Support for Lustre File Service: LFS Object Storage Bi-Directional Sync
10+
- support for Database Tools Identity
11+
- Support for Support for Apple as a Social IDP
12+
- Support for Zero-Trust Packet Routing (ZPR) Security Attribute Onboarding for File Storage Service
13+
- FSDR support for database events integration
14+
- Support for Zero-Trust Packet Routing (ZPR) Security Attribute Onboarding for Streaming Service
15+
- Support for JMS common variables
16+
- Support for Host API - Add computeHostInSubtree query param to existing ListComputeHosts api.
17+
- Support for (ORM-174501 GA-2) IPv4-Prefix-for-Subnet & Flexible CIDR support for secondary IPs on VNIC
18+
- support for Dual Stack Endpoint
19+
- entry in ChangeLog
20+
21+
### Bug Fix
22+
- secret id fix and other test case fixes
23+
124
## 7.23.0 (October 22, 2025)
225

326
### Added
@@ -11,6 +34,7 @@
1134
- Support for JMS common variables
1235
- Fix devops deploy helm stage set_values and set_string bug
1336
- API Doc link and example link to resource doc
37+
- Support for OCI Data Science - ML Pipelines - Parameterized pipelines
1438

1539
### Bug Fix
1640
- for resourcemanager in provider version 7.22

examples/aiLanguage/main.tf

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,37 +23,60 @@ provider "oci" {
2323
fingerprint = var.fingerprint
2424
private_key_path = var.private_key_path
2525
region = var.region
26-
26+
# version = "6.8.0"
2727
}
2828

2929
variable defined_tag_namespace_name { default = "" }
3030

3131

3232
resource "oci_ai_language_project" "test_project" {
3333
compartment_id = var.compartment_ocid
34+
timeouts {
35+
create = "60m"
36+
update = "60m"
37+
delete = "60m"
38+
}
3439
}
3540

3641
resource "oci_ai_language_model" "test_model" {
3742
compartment_id = var.compartment_ocid
3843
project_id = oci_ai_language_project.test_project.id
3944
description = "Creating test model"
45+
display_name = "testmodel"
4046
model_details {
41-
model_type = "NAMED_ENTITY_RECOGNITION"
47+
model_type = "TEXT_CLASSIFICATION"
4248
language_code = "en"
49+
classification_mode {
50+
classification_mode = "MULTI_LABEL"
51+
}
4352
}
4453
training_dataset {
4554
dataset_type = "OBJECT_STORAGE"
4655
location_details {
4756
location_type = "OBJECT_LIST"
4857
bucket = "TERSI-Test"
4958
namespace = "idngwwc5ajp5"
50-
object_names = ["test.jsonl"]
59+
object_names = ["multi_woz_train_en.csv"]
5160
}
5261
}
62+
timeouts {
63+
create = "60m"
64+
update = "60m"
65+
delete = "60m"
66+
}
5367
}
5468

5569
resource "oci_ai_language_endpoint" "test_endpoint" {
5670
compartment_id = var.compartment_ocid
5771
model_id = oci_ai_language_model.test_model.id
5872
inference_units = 1
73+
timeouts {
74+
create = "60m"
75+
update = "60m"
76+
delete = "60m"
77+
}
78+
}
79+
80+
data "oci_ai_language_endpoint" "test_endpoint" {
81+
id = oci_ai_language_endpoint.test_endpoint.id
5982
}

examples/compute/host_visibility/host_info.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ data "oci_identity_availability_domains" "test_availability_domains" {
3030

3131
data "oci_core_compute_hosts" "test_compute_hosts" {
3232
compartment_id = "${var.compartment_ocid}"
33+
compute_host_in_subtree = true
3334
}
3435

3536
locals {
@@ -67,6 +68,11 @@ output "compute_host_values" {
6768
}
6869
}
6970

71+
72+
output "compute_hosts_list" {
73+
value = data.oci_core_compute_hosts.test_compute_hosts
74+
}
75+
7076
output "compute_host_resource" {
7177
value = oci_core_compute_host.best_compute_host
7278
}

examples/compute/instance/instance.tf

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ resource "oci_core_instance" "test_instance" {
128128
assign_public_ip = true
129129
assign_private_dns_record = true
130130
hostname_label = "exampleinstance${count.index}"
131+
//subnet_cidr = "10.1.20.0/24"
131132
}
132133

133134
source_details {
@@ -342,7 +343,8 @@ resource "oci_core_default_route_table" "default_route_table" {
342343

343344
resource "oci_core_subnet" "test_subnet" {
344345
availability_domain = data.oci_identity_availability_domain.ad.name
345-
cidr_block = "10.1.20.0/24"
346+
cidr_block = "10.1.20.0/24"
347+
//ipv4_cidr_blocks = ["10.1.20.0/24", "10.1.21.0/24"]
346348
display_name = "TestSubnet"
347349
dns_label = "testsubnet"
348350
security_list_ids = [oci_core_vcn.test_vcn.default_security_list_id]
@@ -354,6 +356,6 @@ resource "oci_core_subnet" "test_subnet" {
354356

355357
data "oci_identity_availability_domain" "ad" {
356358
compartment_id = var.tenancy_ocid
357-
ad_number = 1
359+
ad_number = 2
358360
}
359361

examples/databaseTools/generic_jdbc/generic_jdbc.tf renamed to examples/databaseTools/connection/generic_jdbc.tf

Lines changed: 2 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,6 @@
33
//
44
// We will create a Generic JDBC database_tools_connection
55

6-
variable "secret_ocid" {
7-
}
8-
9-
variable "tenancy_ocid" {
10-
}
11-
12-
variable "user_ocid" {
13-
}
14-
15-
variable "fingerprint" {
16-
}
17-
18-
variable "private_key_path" {
19-
}
20-
21-
variable "compartment_ocid" {
22-
}
23-
24-
variable "region" {
25-
}
26-
27-
provider "oci" {
28-
region = var.region
29-
tenancy_ocid = var.tenancy_ocid
30-
user_ocid = var.user_ocid
31-
fingerprint = var.fingerprint
32-
private_key_path = var.private_key_path
33-
}
34-
356
### Connection
367
# Connection - Resource
378
resource "oci_database_tools_database_tools_connection" "dbtools_connection_generic_jdbc" {
@@ -43,7 +14,7 @@ resource "oci_database_tools_database_tools_connection" "dbtools_connection_gene
4314
runtime_support = "UNSUPPORTED"
4415
user_password {
4516
value_type = "SECRETID"
46-
# The user password to use mus exist as a secret in an OCI Vault
17+
# The user password to use must exist as a secret in an OCI Vault
4718
secret_id = var.secret_ocid
4819
}
4920

@@ -56,7 +27,7 @@ resource "oci_database_tools_database_tools_connection" "dbtools_connection_gene
5627
key_stores {
5728
key_store_content {
5829
value_type = "SECRETID"
59-
secret_id = var.secret_ocid
30+
secret_id = var.ca_certificate_pem_secret_ocid
6031
}
6132
key_store_type = "CA_CERTIFICATE_PEM"
6233
}

examples/databaseTools/mysql/mysql_db.tf renamed to examples/databaseTools/connection/mysql_db.tf

Lines changed: 5 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -2,36 +2,7 @@
22
// Licensed under the Mozilla Public License v2.0
33
//
44
// We will create a database_tools_connection for a MySQL database
5-
// The database_tools_connection will not a database_tools_private_endpoint.
6-
7-
variable "tenancy_ocid" {
8-
}
9-
10-
variable "user_ocid" {
11-
}
12-
13-
variable "fingerprint" {
14-
}
15-
16-
variable "private_key_path" {
17-
}
18-
19-
variable "compartment_ocid" {
20-
}
21-
22-
variable "secret_ocid" {
23-
}
24-
25-
variable "region" {
26-
}
27-
28-
provider "oci" {
29-
region = var.region
30-
tenancy_ocid = var.tenancy_ocid
31-
user_ocid = var.user_ocid
32-
fingerprint = var.fingerprint
33-
private_key_path = var.private_key_path
34-
}
5+
// The database_tools_connection will not use a database_tools_private_endpoint.
356

367
### Connection
378
# Connection - Resource
@@ -56,25 +27,25 @@ resource "oci_database_tools_database_tools_connection" "dbtools_connection_mysq
5627
key_store_type = "CLIENT_CERTIFICATE_PEM"
5728
key_store_content {
5829
value_type = "SECRETID"
59-
secret_id = var.secret_ocid
30+
secret_id = var.client_certificate_pem_secret_ocid
6031
}
6132
}
6233
key_stores {
6334
key_store_type = "CLIENT_PRIVATE_KEY_PEM"
6435
key_store_content {
6536
value_type = "SECRETID"
66-
secret_id = var.secret_ocid
37+
secret_id = var.client_private_key_pem_secret_ocid
6738
}
6839
key_store_password {
6940
value_type = "SECRETID"
70-
secret_id = var.secret_ocid
41+
secret_id = var.client_private_key_pem_password_secret_ocid
7142
}
7243
}
7344
key_stores {
7445
key_store_type = "CA_CERTIFICATE_PEM"
7546
key_store_content {
7647
value_type = "SECRETID"
77-
secret_id = var.secret_ocid
48+
secret_id = var.ca_certificate_pem_secret_ocid
7849
}
7950
}
8051

examples/databaseTools/oracle/oracle_db.tf renamed to examples/databaseTools/connection/oracle_db.tf

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -6,35 +6,6 @@
66
// The database_tools_private_endpoint will need to be in a subnet, so we will create a vcn and a subnet.
77
// We will also create an oci_core_network_security_group to be used by the database_tools_private_endpoint.
88

9-
variable "tenancy_ocid" {
10-
}
11-
12-
variable "user_ocid" {
13-
}
14-
15-
variable "secret_ocid" {
16-
}
17-
18-
variable "fingerprint" {
19-
}
20-
21-
variable "private_key_path" {
22-
}
23-
24-
variable "compartment_ocid" {
25-
}
26-
27-
variable "region" {
28-
}
29-
30-
provider "oci" {
31-
region = var.region
32-
tenancy_ocid = var.tenancy_ocid
33-
user_ocid = var.user_ocid
34-
fingerprint = var.fingerprint
35-
private_key_path = var.private_key_path
36-
}
37-
389
### Network resources - vcn, subnet and network security group
3910
# vcn
4011
resource "oci_core_vcn" "tf_vcn" {

examples/databaseTools/postgresql/postgresql.tf renamed to examples/databaseTools/connection/postgresql.tf

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -3,35 +3,6 @@
33
//
44
// We will create a Postgresql database_tools_connection
55

6-
variable "secret_ocid" {
7-
}
8-
9-
variable "tenancy_ocid" {
10-
}
11-
12-
variable "user_ocid" {
13-
}
14-
15-
variable "fingerprint" {
16-
}
17-
18-
variable "private_key_path" {
19-
}
20-
21-
variable "compartment_ocid" {
22-
}
23-
24-
variable "region" {
25-
}
26-
27-
provider "oci" {
28-
region = var.region
29-
tenancy_ocid = var.tenancy_ocid
30-
user_ocid = var.user_ocid
31-
fingerprint = var.fingerprint
32-
private_key_path = var.private_key_path
33-
}
34-
356
### Connection
367
# Connection - Resource
378
resource "oci_database_tools_database_tools_connection" "dbtools_connection_postgresql" {
@@ -56,7 +27,7 @@ resource "oci_database_tools_database_tools_connection" "dbtools_connection_post
5627
key_stores {
5728
key_store_content {
5829
value_type = "SECRETID"
59-
secret_id = var.secret_ocid
30+
secret_id = var.ca_certificate_pem_secret_ocid
6031
}
6132
key_store_type = "CA_CERTIFICATE_PEM"
6233
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
provider "oci" {
2+
region = var.region
3+
tenancy_ocid = var.tenancy_ocid
4+
user_ocid = var.user_ocid
5+
fingerprint = var.fingerprint
6+
private_key_path = var.private_key_path
7+
}

0 commit comments

Comments
 (0)