Skip to content

Commit e799fca

Browse files
authored
Merge pull request #2412 from oracle/release_gh
Releasing version 7.9.0
2 parents 6b7c09a + d2747c6 commit e799fca

File tree

322 files changed

+14136
-1098
lines changed

Some content is hidden

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

322 files changed

+14136
-1098
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
## 7.8.0 (July 03, 2025)
1+
## 7.9.0 (July 09, 2025)
2+
3+
### Added
4+
Added - Support for OSP OCI integration service: Fraud changes
5+
Support for GenAI Agents Tools API
6+
Support for BDS - Automatic Replacement of failed Master (MN0/MN1) and Utility nodes (UN0/UN1)
7+
### Bug Fix
8+
OS Management Hub: unregister managed instance on resource deletion
9+
To support TF import of KMS vault replica.
10+
11+
## 7.8.0 (July 5, 2025)
212

313
### Added
414
- Support for [Elastic Pool Support for Child Tenancies] Terraform Support in Prod Region ADB-S: Elastic Pool Support for Child Tenancies
@@ -10,8 +20,7 @@
1020
- Support for MultiCloud Data Plane Integration for Database services dbmulticloud changes
1121
### Bug Fix
1222
- Corrected Cloud Database Management Integration Test and added Example Test
13-
14-
## 7.7.0 (June 25, 2025)
23+
## 7.7.0 (June 24, 2025)
1524

1625
### Added
1726
- Support for BYoIPv6 support on LBaaS (API ONLY Release)
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resource "oci_bds_bds_instance_node_backup" "test_bds_instance_node_backup" {
2+
backup_type = "FULL"
3+
bds_instance_id = "${oci_bds_bds_instance.test_bds_instance.id}"
4+
level_type_details {
5+
level_type = "NODE_TYPE_LEVEL"
6+
node_type = "MASTER"
7+
}
8+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
resource "oci_bds_bds_instance_node_backup_configuration" "test_bds_instance_node_backup_configuration" {
2+
backup_type = "FULL"
3+
bds_instance_id = "${oci_bds_bds_instance.test_bds_instance.id}"
4+
level_type_details {
5+
level_type = "NODE_TYPE_LEVEL"
6+
node_type = "MASTER"
7+
}
8+
number_of_backups_to_retain = "1"
9+
schedule = "FREQ=WEEKLY;BYDAY=MO;BYHOUR=10"
10+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
resource "oci_bds_bds_instance_node_replace_configuration" "test_bds_instance_node_replace_configuration" {
2+
bds_instance_id = "${oci_bds_bds_instance.test_bds_instance.id}"
3+
cluster_admin_password = "T3JhY2xlVGVhbVVTQSExMjM="
4+
display_name = "displayName"
5+
duration_in_minutes = "20"
6+
level_type_details {
7+
level_type = "NODE_TYPE_LEVEL"
8+
node_type = "UTILITY"
9+
}
10+
metric_type = "INSTANCE_STATUS"
11+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
variable "node_backup_id" {
2+
}
3+
4+
variable "node_host_name" {
5+
}
6+
7+
resource "oci_bds_bds_instance_replace_node_action" "test_bds_instance_replace_node_action" {
8+
bds_instance_id = "${oci_bds_bds_instance.test_bds_instance.id}"
9+
cluster_admin_password = "T3JhY2xlVGVhbVVTQSExMjM="
10+
node_backup_id = var.node_backup_id
11+
node_host_name = var.node_host_name
12+
}

examples/big_data_service/main.tf

Lines changed: 60 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ variable "tenancy_ocid" {
55
}
66

77
variable "cluster_profile" {
8-
default = "HADOOP"
8+
default = "HADOOP"
99
}
1010

1111
variable "user_ocid" {
@@ -57,11 +57,11 @@ variable "bds_instance_freeform_tags" {
5757
}
5858

5959
variable "bds_instance_is_high_availability" {
60-
default = false
60+
default = true
6161
}
6262

6363
variable "bds_instance_is_secure" {
64-
default = false
64+
default = true
6565
}
6666

6767
variable "bds_instance_network_config_cidr_block" {
@@ -85,7 +85,7 @@ variable "bds_instance_nodes_shape" {
8585
}
8686

8787
variable "bds_instance_worker_node_shape" {
88-
default = "VM.DenseIO.E5.Flex"
88+
default = "VM.Standard.Generic"
8989
}
9090

9191
variable "bds_instance_compute_only_worker_node_shape" {
@@ -146,85 +146,80 @@ resource "oci_bds_bds_instance" "test_bds_instance" {
146146
display_name = var.bds_instance_display_name
147147
is_high_availability = var.bds_instance_is_high_availability
148148
is_secure = var.bds_instance_is_secure
149-
kms_key_id = var.kms_key_id
149+
// kms_key_id = var.kms_key_id
150150
cluster_profile = var.cluster_profile
151-
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-
}
151+
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"
162152

163153
master_node {
164154
#Required
165-
shape = "VM.Standard.E4.Flex"
155+
shape = "VM.DenseIO.E5.Flex"
166156

167157
subnet_id = var.subnet_id
168-
block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
169-
number_of_nodes = 1
158+
// block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
159+
number_of_nodes = 2
170160
shape_config {
171-
memory_in_gbs = 120
172-
ocpus = 8
173-
}
161+
memory_in_gbs = 96
162+
ocpus = 8
163+
nvmes = 1
164+
}
174165
}
175166

176167
util_node {
177168
#Required
178-
shape = "VM.Standard.E4.Flex"
169+
shape = "VM.DenseIO.Generic"
179170

180171
subnet_id = var.subnet_id
181-
block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
182-
number_of_nodes = 1
172+
// block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
173+
number_of_nodes = 3
183174
shape_config {
184-
memory_in_gbs = 120
185-
ocpus = 8
186-
}
175+
memory_in_gbs = 96
176+
ocpus = 8
177+
nvmes = 1
178+
}
187179
}
188180

189181
worker_node {
190182
#Required
191183
shape = var.bds_instance_worker_node_shape
192-
subnet_id = var.subnet_id
193-
number_of_nodes = 3
194-
shape_config {
195-
memory_in_gbs = 120
196-
ocpus = 8
197-
nvmes = 1
198-
}
199-
}
200-
201-
edge_node {
202-
#Required
203-
shape = var.bds_instance_edge_node_shape
204-
205-
subnet_id = var.subnet_id
206-
block_volume_size_in_gbs = var.bds_instance_worker_nodes_block_volume_size_in_gbs
207-
number_of_nodes = 1
208-
shape_config {
209-
memory_in_gbs = var.bds_instance_edge_memory_per_node
210-
ocpus = var.bds_instance_edge_ocpu_per_node
211-
}
212-
}
213-
214-
compute_only_worker_node {
215-
#Required
216-
shape = var.bds_instance_compute_only_worker_node_shape
217-
184+
block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
185+
shape = "VM.DenseIO.E5.Flex"
186+
// block_volume_size_in_gbs = var.bds_instance_nodes_block_volume_size_in_gbs
218187
subnet_id = var.subnet_id
219-
block_volume_size_in_gbs = var.bds_instance_worker_nodes_block_volume_size_in_gbs
220-
number_of_nodes = 1
221-
shape_config {
222-
memory_in_gbs = var.bds_instance_compute_only_worker_memory_per_node
223-
ocpus = var.bds_instance_compute_only_worker_ocpu_per_node
188+
number_of_nodes = 4
189+
shape_config {
190+
memory_in_gbs = 96
191+
ocpus = 8
192+
nvmes = 1
193+
}
194+
}
195+
196+
edge_node {
197+
#Required
198+
shape = var.bds_instance_edge_node_shape
199+
200+
subnet_id = var.subnet_id
201+
block_volume_size_in_gbs = var.bds_instance_worker_nodes_block_volume_size_in_gbs
202+
number_of_nodes = 1
203+
shape_config {
204+
memory_in_gbs = var.bds_instance_edge_memory_per_node
205+
ocpus = var.bds_instance_edge_ocpu_per_node
206+
}
207+
}
208+
209+
compute_only_worker_node {
210+
#Required
211+
shape = var.bds_instance_compute_only_worker_node_shape
212+
213+
subnet_id = var.subnet_id
214+
block_volume_size_in_gbs = var.bds_instance_worker_nodes_block_volume_size_in_gbs
215+
number_of_nodes = 1
216+
shape_config {
217+
memory_in_gbs = var.bds_instance_compute_only_worker_memory_per_node
218+
ocpus = var.bds_instance_compute_only_worker_ocpu_per_node
224219
}
225220
}
226221

227-
ignore_existing_nodes_shape = ["worker", "master", "utility"]
222+
ignore_existing_nodes_shape = ["worker", "master", "utility"]
228223

229224
is_cloud_sql_configured = false
230225

@@ -234,7 +229,7 @@ resource "oci_bds_bds_instance" "test_bds_instance" {
234229

235230
#Uncomment kafka_broker_node block for use of Kafka cluster
236231
#kafka_broker_node {
237-
#Required
232+
#Required
238233
# shape = var.bds_instance_compute_only_worker_node_shape
239234

240235
# subnet_id = var.subnet_id
@@ -247,10 +242,10 @@ resource "oci_bds_bds_instance" "test_bds_instance" {
247242
#}
248243

249244
#Optional
250-
#Uncomment this when running in home region (PHX)
251-
# defined_tags = {
252-
# "${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = var.bds_instance_defined_tags_value
253-
# }
245+
#Uncomment this when running in home region (PHX)
246+
# defined_tags = {
247+
# "${oci_identity_tag_namespace.tag-namespace1.name}.${oci_identity_tag.tag1.name}" = var.bds_instance_defined_tags_value
248+
# }
254249
freeform_tags = var.bds_instance_freeform_tags
255250
network_config {
256251
#Optional

examples/generative_ai_agent/agent.tf

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ resource "oci_generative_ai_agent_agent" "test_agent" {
99
display_name = var.agent_display_name
1010
description = var.agent_description
1111
welcome_message = var.agent_welcome_message
12-
#defined_tags not tested - cannot test in home region
12+
llm_config {
13+
routing_llm_customization {
14+
#Optional
15+
instruction = var.agent_llm_config_routing_llm_customization_instruction
16+
}
17+
}
18+
#defined_tags not tested - cannot test in home region
1319
freeform_tags = var.test_freeform_tags
14-
knowledge_base_ids = [
15-
oci_generative_ai_agent_knowledge_base.test_service_managed_knowledge_base.id
16-
]
1720
}
1821

1922
data "oci_generative_ai_agent_agent" "test_agent" {

examples/generative_ai_agent/agent_endpoint.tf

Lines changed: 43 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,61 @@
11
resource "oci_generative_ai_agent_agent_endpoint" "test_agent_endpoint" {
22
#Required
33
compartment_id = var.compartment_ocid
4-
agent_id = data.oci_generative_ai_agent_agent.test_agent.id
4+
agent_id = var.test_agent_id
55

66
#Optional
77
display_name = var.test_agent_endpoint_display_name
88
description = var.test_agent_endpoint_description
9-
#defined_tags not tested - cannot test in home region
9+
#defined_tags not tested - cannot test in home region
1010
freeform_tags = var.test_freeform_tags
1111
should_enable_citation = var.should_enable_citation
1212
should_enable_session = var.should_enable_session
1313
should_enable_trace = var.should_enable_trace
14+
should_enable_multi_language = var.agent_endpoint_should_enable_multi_language
1415
content_moderation_config {
1516
should_enable_on_input = var.should_enable_on_input
1617
should_enable_on_output = var.should_enable_on_output
1718
}
19+
guardrail_config {
20+
21+
#Optional
22+
content_moderation_config {
23+
24+
#Optional
25+
input_guardrail_mode = var.agent_endpoint_guardrail_config_content_moderation_config_input_guardrail_mode
26+
output_guardrail_mode = var.agent_endpoint_guardrail_config_content_moderation_config_output_guardrail_mode
27+
}
28+
personally_identifiable_information_config {
29+
30+
#Optional
31+
input_guardrail_mode = var.agent_endpoint_guardrail_config_personally_identifiable_information_config_input_guardrail_mode
32+
output_guardrail_mode = var.agent_endpoint_guardrail_config_personally_identifiable_information_config_output_guardrail_mode
33+
}
34+
prompt_injection_config {
35+
36+
#Optional
37+
input_guardrail_mode = var.agent_endpoint_guardrail_config_prompt_injection_config_input_guardrail_mode
38+
}
39+
}
40+
human_input_config {
41+
#Required
42+
should_enable_human_input = var.agent_endpoint_human_input_config_should_enable_human_input
43+
}
44+
output_config {
45+
#Required
46+
output_location {
47+
#Required
48+
bucket = var.agent_endpoint_output_config_output_location_bucket
49+
namespace = var.agent_endpoint_output_config_output_location_namespace
50+
output_location_type = var.agent_endpoint_output_config_output_location_output_location_type
51+
52+
#Optional
53+
prefix = var.agent_endpoint_output_config_output_location_prefix
54+
}
55+
56+
#Optional
57+
retention_period_in_minutes = var.agent_endpoint_output_config_retention_period_in_minutes
58+
}
1859
session_config {
1960
idle_timeout_in_seconds = var.idle_timeout_in_seconds
2061
}
Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
resource "oci_generative_ai_agent_data_source" "test_data_source" {
22
#Required
33
compartment_id = var.compartment_ocid
4-
knowledge_base_id = oci_generative_ai_agent_knowledge_base.test_service_managed_knowledge_base.id
4+
knowledge_base_id = var.test_knowledge_base_id
55
data_source_config {
6-
data_source_config_type = "OCI_OBJECT_STORAGE"
6+
data_source_config_type = "OCI_OBJECT_STORAGE"
77
object_storage_prefixes {
8-
bucket = data.oci_objectstorage_bucket.bucket.name
9-
namespace = data.oci_objectstorage_namespace.ns.namespace
10-
prefix = var.test_data_source_prefix
8+
bucket = var.test_bucket
9+
namespace = var.test_namespace
10+
prefix = var.test_prefix
1111
}
1212
}
1313

1414
#Optional
1515
display_name = var.test_data_source_display_name
1616
description = var.test_data_source_description
17-
#defined_tags not tested - cannot test in home region
17+
#defined_tags not tested - cannot test in home region
1818
freeform_tags = var.test_freeform_tags
1919
}
2020

@@ -27,13 +27,3 @@ data "oci_generative_ai_agent_data_sources" "test_data_sources" {
2727
#Required
2828
compartment_id = var.compartment_ocid
2929
}
30-
31-
data "oci_objectstorage_namespace" "ns" {
32-
#Optional
33-
compartment_id = var.compartment_ocid
34-
}
35-
36-
data "oci_objectstorage_bucket" "bucket" {
37-
name = "oci-docs"
38-
namespace = data.oci_objectstorage_namespace.ns.namespace
39-
}

0 commit comments

Comments
 (0)