Skip to content

Commit 80bccb8

Browse files
authored
Releasing version 6.8.0
Releasing version 6.8.0
2 parents 84175fd + 40ab4bc commit 80bccb8

File tree

298 files changed

+6159
-862
lines changed

Some content is hidden

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

298 files changed

+6159
-862
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 6.8.0 (August 21, 2024)
2+
3+
### Added
4+
- Support for autonomous database-dedicated
5+
- Support for [DMS] RDS migrations
6+
- Support for Oracle Home Version Control - Phase 3 (Patch ACD using GoldImage) | ADB-D & ADB-C@C
7+
- Support for OAC Embedding options for internal services and Identity Domains first-class support in Analytics APIs
8+
- Support for MySQL HeatWave Service: Storage Auto Scaling
9+
- Support for OCI Cache with Redis
10+
- Support for Support for running OCI OSS operation
11+
- Support for Extend Data Retention Period for OIC Instance
12+
113
## 6.7.0 (August 13, 2024)
214

315
### Added

GNUmakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ update-version:
111111
ifdef version
112112
sed -i -e 's/ReleaseDate = ".*"/ReleaseDate = "$(release_date)"/g' internal/globalvar/version.go
113113
sed -i -e 's/Version = ".*"/Version = "$(version)"/g' internal/globalvar/version.go && rm -f internal/globalvar/version.go-e
114+
sed -i -e 's/version: ".*"/version: "$(version)"/g' ocibuild.conf && rm -f ocibuild.conf-e
114115
else
115116
@echo Err! `make update-version` requires a version argument
116117
endif

examples/database/atp-d/main.tf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ provider "oci" {
77
fingerprint = var.fingerprint
88
private_key_path = var.private_key_path
99
region = var.region
10-
version = "5.25.0"
1110
}
1211

1312
resource "oci_database_autonomous_container_database" "test_autonomous_container_database" {
1413
#Required
1514
cloud_autonomous_vm_cluster_id = oci_database_cloud_autonomous_vm_cluster.test_cloud_autonomous_vm_cluster.id
1615
display_name = "example-container-database"
1716
patch_model = "RELEASE_UPDATES"
18-
db_version = "19.22.0.1.0"
17+
db_version = "19.23.0.1.0"
1918
db_name = "ACDNAME"
2019

2120
#Optional
@@ -89,7 +88,6 @@ resource "oci_database_autonomous_container_database" "autonomous_container_data
8988
recovery_window_in_days = "7"
9089
}
9190
compartment_id = var.compartment_ocid
92-
db_unique_name = random_string.db_unique_name_adsi_acd.result
9391
display_name = "ACD-TFTest"
9492
freeform_tags = {
9593
"Department" = "Finance"

examples/database/exadata_cc/adbd/acd.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
resource "random_string" "db_unique_name" {
22
length = 8
33
special = false
4+
numeric = false
45
}
56

67
resource "oci_database_autonomous_container_database" "autonomous_container_database" {
78
autonomous_vm_cluster_id = oci_database_autonomous_vm_cluster.test_autonomous_vm_cluster.id
8-
db_version = "19.20.0.1.0"
9+
db_version = "19.23.0.1.0"
910
backup_config {
1011
backup_destination_details {
1112
type = "LOCAL"

examples/database/exadata_cc/adbd/acd_from_adsi.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
resource "random_string" "db_unique_name_adsi_acd" {
22
length = 8
33
special = false
4-
number = false
4+
numeric = false
55
}
66

77
resource "oci_database_autonomous_container_database" "autonomous_container_database_from_adsi" {
Lines changed: 183 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,183 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "database_mysql_hatewave_id" {
5+
default = ""
6+
}
7+
8+
variable "tenancy_ocid" {
9+
}
10+
11+
variable "user_ocid" {
12+
}
13+
14+
variable "fingerprint" {
15+
}
16+
17+
variable "region" {
18+
}
19+
20+
variable "private_key_path" {
21+
}
22+
23+
variable "compartment_ocid" {
24+
}
25+
26+
variable "kms_key_id" {
27+
}
28+
29+
variable "kms_vault_id" {
30+
}
31+
32+
variable "ssh_public_keys" {
33+
}
34+
35+
variable "compartment_id" {
36+
}
37+
38+
variable "database_id" {
39+
}
40+
41+
variable "subnet_id" {
42+
}
43+
44+
variable "vcn_id" {
45+
}
46+
47+
variable "source_connection_id"{
48+
}
49+
50+
variable "source_connection_container_id"{
51+
}
52+
53+
variable "target_connection_id"{
54+
}
55+
56+
variable "ssh_key" {
57+
}
58+
59+
variable "src_database_id" {
60+
}
61+
62+
variable "tgt_database_id" {
63+
}
64+
65+
variable "bucket_id" {
66+
}
67+
68+
variable "source_connection_rds_id" {
69+
}
70+
71+
variable "connection_string" {
72+
default = ""
73+
}
74+
75+
variable "nsg_ids" {
76+
default = ""
77+
}
78+
79+
variable "migration_id" {
80+
default = ""
81+
}
82+
83+
variable "database_autonomous_id" {
84+
default = ""
85+
}
86+
87+
variable "database_target_mysql_id" {
88+
default = ""
89+
}
90+
91+
variable "database_mysql_id" {
92+
default = ""
93+
}
94+
95+
provider "oci" {
96+
tenancy_ocid = var.tenancy_ocid
97+
user_ocid = var.user_ocid
98+
fingerprint = var.fingerprint
99+
private_key_path = var.private_key_path
100+
auth = "SecurityToken"
101+
region = var.region
102+
103+
}
104+
105+
data "oci_database_migration_migrations" "test_migrations" {
106+
#Required
107+
migration_id = var.migration_id
108+
}
109+
110+
data "oci_database_migration_migration_object_types" "test_migration_object_types" {
111+
connection_type = "MYSQL"
112+
}
113+
114+
data "oci_identity_availability_domains" "test_availability_domains" {
115+
compartment_id = var.compartment_id
116+
}
117+
118+
resource "oci_database_migration_connection" "test_connection_mysql_hatewave_target" {
119+
compartment_id = var.compartment_id
120+
database_id = var.database_mysql_hatewave_id
121+
display_name = "TF_display_test_create"
122+
123+
connection_type = "MYSQL"
124+
key_id = var.kms_key_id
125+
vault_id = var.kms_vault_id
126+
password = "BEstrO0ng_#11"
127+
technology_type = "OCI_MYSQL"
128+
username = "ggfe"
129+
database_name = "ggfe"
130+
host = "254.249.0.0"
131+
port = "3306"
132+
replication_password="replicationPassword"
133+
replication_username="replicationUsername"
134+
security_protocol="PLAIN"
135+
ssh_host = "sshHost"
136+
ssh_key = "sshKey"
137+
ssh_sudo_location = "sshSudoLocation"
138+
ssh_user = "sshUser"
139+
subnet_id = var.subnet_id
140+
wallet = "wallet2"
141+
142+
}
143+
144+
resource "oci_database_migration_connection" "test_connection_mysql_server_source" {
145+
compartment_id = var.compartment_id
146+
display_name = "TF_display_test_create_source"
147+
connection_type = "MYSQL"
148+
key_id = var.kms_key_id
149+
vault_id = var.kms_vault_id
150+
password = "BEstrO0ng_#11"
151+
technology_type = "MYSQL_SERVER"
152+
username = "ggfe"
153+
database_name = "ggfe"
154+
host = "254.249.0.0"
155+
port = "3306"
156+
replication_password="replicationPassword"
157+
replication_username="replicationUsername"
158+
security_protocol="PLAIN"
159+
ssh_host = "sshHost"
160+
ssh_key = "sshKey"
161+
ssh_sudo_location = "sshSudoLocation"
162+
ssh_user = "sshUser"
163+
wallet = "wallet2"
164+
165+
}
166+
167+
resource "oci_database_migration_migration" "test_mysql_migration" {
168+
compartment_id = var.compartment_id
169+
database_combination = "MYSQL"
170+
source_database_connection_id = oci_database_migration_connection.test_connection_mysql_server_source.id
171+
target_database_connection_id = oci_database_migration_connection.test_connection_mysql_hatewave_target.id
172+
type = "ONLINE"
173+
display_name = "displayName"
174+
}
175+
176+
resource "oci_database_migration_migration" "test_offline_mysql_migration" {
177+
compartment_id = var.compartment_id
178+
database_combination = "MYSQL"
179+
source_database_connection_id = oci_database_migration_connection.test_connection_mysql_server_source.id
180+
target_database_connection_id = oci_database_migration_connection.test_connection_mysql_hatewave_target.id
181+
type = "OFFLINE"
182+
display_name = "displayName"
183+
}
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
5+
6+
resource "oci_database_migration_connection" "test_connection_mysql_rds_target" {
7+
compartment_id = var.compartment_id
8+
database_id = var.database_mysql_hatewave_id
9+
display_name = "TF_display_test_create"
10+
11+
connection_type = "MYSQL"
12+
key_id = var.kms_key_id
13+
vault_id = var.kms_vault_id
14+
password = "BEstrO0ng_#11"
15+
technology_type = "OCI_MYSQL"
16+
username = "ggfe"
17+
database_name = "ggfe"
18+
host = "254.249.0.0"
19+
port = "3306"
20+
replication_password="replicationPassword"
21+
replication_username="replicationUsername"
22+
security_protocol="PLAIN"
23+
ssh_host = "sshHost"
24+
ssh_key = "sshKey"
25+
ssh_sudo_location = "sshSudoLocation"
26+
ssh_user = "sshUser"
27+
subnet_id = var.subnet_id
28+
wallet = "wallet2"
29+
30+
}
31+
32+
resource "oci_database_migration_connection" "test_connection_mysql_rds_source" {
33+
compartment_id = var.compartment_id
34+
display_name = "TF_display_test_create_source"
35+
connection_type = "MYSQL"
36+
key_id = var.kms_key_id
37+
vault_id = var.kms_vault_id
38+
password = "BEstrO0ng_#11"
39+
technology_type = "AMAZON_RDS_MYSQL"
40+
username = "ggfe"
41+
database_id = var.database_mysql_id
42+
database_name = "ggfe"
43+
host = "254.249.0.0"
44+
port = "3306"
45+
replication_password="replicationPassword"
46+
replication_username="replicationUsername"
47+
security_protocol="PLAIN"
48+
ssh_host = "sshHost"
49+
ssh_key = "sshKey"
50+
ssh_sudo_location = "sshSudoLocation"
51+
ssh_user = "sshUser"
52+
subnet_id = var.subnet_id
53+
wallet = "wallet2"
54+
55+
}
56+
57+
resource "oci_database_migration_migration" "test_mysql_rds_migration" {
58+
compartment_id = var.compartment_id
59+
database_combination = "MYSQL"
60+
source_database_connection_id = oci_database_migration_connection.test_connection_mysql_rds_source.id
61+
target_database_connection_id = oci_database_migration_connection.test_connection_mysql_rds_target.id
62+
type = "ONLINE"
63+
display_name = "displayName"
64+
}
65+
66+
resource "oci_database_migration_migration" "test_offline_mysql_rds_migration" {
67+
compartment_id = var.compartment_id
68+
database_combination = "MYSQL"
69+
source_database_connection_id = oci_database_migration_connection.test_connection_mysql_rds_source.id
70+
target_database_connection_id = oci_database_migration_connection.test_connection_mysql_rds_target.id
71+
type = "OFFLINE"
72+
display_name = "displayName"
73+
}

0 commit comments

Comments
 (0)